DataSource for Entity Framework in WPF
C1.LiveLinq.Collections Namespace / IndexedCollection<T> Class / CreateNew Property

In This Topic
    CreateNew Property (IndexedCollection<T>)
    In This Topic
    Gets or sets a delegate that is used to create new items. If it is null, a public parameterless constructor of type T is used.
    Syntax
    'Declaration
     
    Public Property CreateNew As Func(Of T)
    public Func<T> CreateNew {get; set;}
    See Also